release: 0.1.0-alpha.28#39
Merged
stainless-app[bot] merged 78 commits intoMay 18, 2026
Merged
Conversation
Contributor
Author
|
🧪 Testing To try out this version of the SDK: Expires at: Sun, 14 Jun 2026 16:28:47 GMT |
a17cf38 to
98017b1
Compare
98017b1 to
6238516
Compare
6238516 to
5acda7d
Compare
5acda7d to
25ed3bd
Compare
25ed3bd to
a0ecdb8
Compare
a0ecdb8 to
780e8a3
Compare
780e8a3 to
ce95e9e
Compare
ce95e9e to
53d24ca
Compare
53d24ca to
3573b57
Compare
3573b57 to
3475ff8
Compare
3475ff8 to
14eb6b5
Compare
14eb6b5 to
b685419
Compare
b685419 to
62357ab
Compare
Note that we still want to run tests, as these depend on the metadata.
9bfd012 to
f4e0a0d
Compare
f4e0a0d to
d65a073
Compare
d65a073 to
a75cbb0
Compare
a75cbb0 to
d73f850
Compare
d73f850 to
3d11c1d
Compare
3d11c1d to
ad838aa
Compare
ad838aa to
e38c9ac
Compare
e38c9ac to
bd26f38
Compare
bd26f38 to
87a0f13
Compare
87a0f13 to
9288de5
Compare
Pin all GitHub Actions referenced in generated workflows (both first-party `actions/*` and third-party) to immutable commit SHAs. Updating pinned actions is now a deliberate codegen-side bump rather than implicit on every workflow run.
Comment on lines
-4
to
-22
| import { APIPromise } from '../../core/api-promise'; | ||
| import { RequestOptions } from '../../internal/request-options'; | ||
| import { path } from '../../internal/utils/path'; | ||
|
|
||
| export class Images extends APIResource { | ||
| /** | ||
| * List all VM Images for the authenticated account | ||
| */ | ||
| list(options?: RequestOptions): APIPromise<ImageListResponse> { | ||
| return this._client.get('/v1/vms/images', options); | ||
| } | ||
|
|
||
| /** | ||
| * Get the download URL for a VM image by ID | ||
| */ | ||
| get(imageID: string, options?: RequestOptions): APIPromise<ImageGetResponse> { | ||
| return this._client.get(path`/v1/vms/images/${imageID}`, options); | ||
| } | ||
| } |
sigmachirality
approved these changes
May 18, 2026
sigmachirality
left a comment
Member
There was a problem hiding this comment.
conditionally approved, but figure out what happened to the images routes before merging
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated Release PR
0.1.0-alpha.28 (2026-05-17)
Full Changelog: v0.1.0-alpha.27...v0.1.0-alpha.28
Features
Bug Fixes
Chores
actions/github-script(16bd5ac)actions/checkoutversion (0a620ee)This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions